/* ===============================
   BRAND FIX – FORCE OVERRIDE
=============================== */

/* container */
.brand-cards{
    display:flex !important;
    justify-content:space-between !important;
    align-items:center !important;

    width:100% !important;
    max-width:none !important;

    padding:120px 60px !important;
    gap:80px !important;

    background:none !important;
}

/* card */
.brand-card{
    flex:1 !important;

    height:220px !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    background:none !important;
    border:none !important;
    box-shadow:none !important;
}

/* 🔥 EN KRİTİK KISIM */
.brand-card img{
    height:120px !important;     /* BURAYI 140-160 yapabilirsin */
    width:auto !important;

    max-width:none !important;
    max-height:none !important;

    object-fit:contain !important;
}

/* hover */
.brand-card:hover img{
    transform:scale(1.1);
    transition:.3s;
}

/* mobil */
@media(max-width:768px){
    .brand-cards{
        flex-wrap:wrap !important;
        gap:40px !important;
    }

    .brand-card{
        flex:0 0 45% !important;
    }

    .brand-card img{
        height:90px !important;
    }
}

